These exercises will be ungraded opportunities for you to continue to build your R skills. If you spend about 45 min to 1 hour on these skills weekly, you’ll find your abilities will improve dramatically very quickly.
And here I have embedded the animated visualization:
Here is an image on the reported sightings of Bigfoot in the US over time.
Here is a basic interactive plot created with the plotly
package and data from VDem:
library(vdemdata)
vdem %>%
filter(year == 2020, !is.na(v2x_regime), !is.na(e_v2x_gender_4C))%>%
group_by(v2x_regime, e_v2x_gender_4C) %>%
count() %>%
ggplot(aes(x = v2x_regime, y = , e_v2x_gender_4C, fill = n))+
geom_tile() -> gender_regime
ggplotly(gender_regime)-> gender_plotly
gender_plotly
knitr::include_url("sightings_map.html", height="1080px")